home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gcctest / tests03.zoo / Makefile.tos < prev    next >
Makefile  |  1992-04-27  |  340b  |  22 lines

  1. SRC = tatof.c tbcopy.c tctype.c tprintf.c tqsort.c trandm.c trdwr.c \
  2. tregex.c tscanf.c tsetjm.c tsignl.c tstdio.c tstring.c tstrl1.c \
  3. tstrl2.c ttime.c
  4.  
  5. .SUFFIXES: .ttp
  6.  
  7. .c.ttp:
  8.     $(CC) $(CFLAGS) -o $*.ttp $*.c
  9.  
  10. CC= cgcc
  11. CFLAGS = -g -O
  12.  
  13. ALL = $(SRC:.c=.ttp)
  14.  
  15. all : $(ALL)
  16.  
  17. clean:
  18.     rm -f *.o
  19.  
  20. realclean: clean
  21.     rm -f $(ALL) core report test
  22.